home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 5 / MacMania 5.toast / / Tools&Utilities / Plotfoil 3.2 / naca-1.0 / Makehead.sgi < prev    next >
Text File  |  1995-09-13  |  490b  |  36 lines

  1. #-----------------------------------------------------------------------------
  2. #
  3. #  Makefile made with makemake
  4. #
  5. #  SGI Version
  6. #
  7. #-----------------------------------------------------------------------------
  8. #
  9. .SUFFIXES: .o .f .c
  10.  
  11. #
  12. # Compiler names
  13. #
  14. CC      = cc
  15. FC      = f77
  16. AR      = ar
  17. RANLIB  = true
  18.  
  19. #
  20. # Compiler flags
  21. #
  22. CFLAGS = -O
  23. FFLAGS = -O
  24. ARFLAGS = ovr
  25. LDFLAGS = -L. -lnaca
  26.  
  27. #
  28. #  Compile individual source files
  29. #
  30. .f.o:
  31.     $(FC) $(FFLAGS) -c $<
  32.  
  33. .c.o:
  34.     $(CC) $(CFLAGS) -c $<
  35.  
  36.